home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.amitavaplay == false)
- {
- att = false;
- }
- if(att == true)
- {
- dx = _X - _root.tank._x;
- dy = _Y - _root.tank._y;
- d = Math.sqrt(dx * dx + dy * dy);
- if(50 < d)
- {
- rad = Math.atan2(dy,dx) + 3.141592653589793;
- deg = rad * 180 / 3.141592653589793;
- _rotation = deg;
- b = speed * Math.cos(rad);
- p = speed * Math.sin(rad);
- _X = _X + b;
- _Y = _Y + p;
- }
- else if(0 < _root.amithealth)
- {
- this.gotoAndStop(3);
- _root.tank.truck.gotoAndStop(2);
- _root.tank.turret.gotoAndStop(3);
- }
- }
- }
-